home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 003a / asmwiz16.zip / 8CREATE.BAT next >
DOS Batch File  |  1991-01-29  |  487b  |  14 lines

  1. echo off
  2. echo   This batch file will assemble and link the EXAMPLE.ASM file using
  3. echo   A86 and LINK.  If you are using a different assembler and/or linker,
  4. echo   this batch file must be changed to reflect the names of your assembler
  5. echo   and linker.
  6. echo   --------------------------------------------------------------------
  7. pause
  8. ren example.asm example.8
  9. a86 example.8 example.obj
  10. ren example.8 example.asm
  11. link example,,nul,asmwiz;
  12. erase example.obj
  13. execom example
  14.